home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 September / Macworld (1998-09).dmg / Serious Demos / MacWebCam 2.7 / Sample AppleScripts / Anarchie sample next >
Text File  |  1997-01-12  |  742b  |  22 lines

  1. -- A post-process script to FTP the last image to a remote location.  
  2. -- This script uses a two step process to minimize the time that a image 
  3. -- is unavailable to the http server.
  4. -- Any attept to FTP an image from the Mac to a remote http server could 
  5. -- result in errors due to read/write contention.  
  6. -- Use at your own risk!
  7.  
  8. -- To use:
  9. -- Change the variables below, and add passwords, if needed.
  10.  
  11. tell application "Anarchie"
  12.     
  13.     set ftptempfile to "/yourpath/temp.jpg"
  14.     set ftpdestfile to "/yourpath/current.jpg"
  15.     set yourFTPHost to "ftp.yourhost.com"
  16.     set yourLocalImage to "RAM Disk:Image.jpg"
  17.     
  18.     store file yourLocalImage host yourFTPHost path ftptempfile
  19.     rename host yourFTPHost path ftptempfile newname ftpdestfile
  20.     
  21. end tell
  22.